博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Flask_0x02 模板
阅读量:5235 次
发布时间:2019-06-14

本文共 5122 字,大约阅读时间需要 17 分钟。

0x1 Jinja2

  1.1 Jinja2模板引擎

    模板是包含响应文本的文件,其中包含用站位变量表示的动态部分

    templates/user.html

Hello, {
{ name }}!

    Flask提供render_template函数把Jinja2模板引擎集成到程序中

    渲染模板

from flask import Flask, render_template#...@app.route('/')def index():    return render_template('index.html')@app.route('/user/
')def user(name): return render_template('user.html', name=name)

    Jinja2能识别所有类型的变量

A value from a dictionary: {

{ mydict['key'] }}.

A value from a list: {

{ mylist[3] }}.

A value from a list,with a variable index: {

{ mylist[myintvar] }}.

A value from an object's method: {

{ myobj.somemethod() }}.

    可以使用过滤器修改变量

Hello,{
{ name|capitalize }}Jinjia2变量过滤器:http://jinja.pocoo.org/docs/2.9/templates/#builtin-filters safe 渲染值时不转义capitalize 首字母大写,其他小写lower 转换小写upper 转换大写title 把值中每个单词首字母转换成大写trim 去掉值的首尾空格striptags 渲染前把值中所有HTML标签删掉

  1.2 控制结构

{% if user %}    Hello, {
{ user }}{
% else %} Hello, Stranger!{
% endif %}
    {
    % for comment in comments %}
  • {
    { comment }}
  • {
    % endfor %}

    宏

{% macro render_comment(comment) %}    
  • {
    { comment }}
  • {
    % endmacro %}
      {
      % for comment in comments %} {
      { render_comment(comment) }}{
      % endfor %}

        重复使用宏,可以将其保存在单独的文件中

    {% import 'macros.html' as macros %}
      {
      % for comment in comments %} {
      { macros.render_comment(comment) }} {
      % endfor %}

        继承,先创建名为base.html的模板

        {% block head %}    {% block title %}{% endblock %} - MyApplication    {% endblock %}    {% block body %}    {% endblock %}

        block标签定义的元素可在衍生模板中修改

    {% extends "base.html" %}{% block title %}Index{% endblock %}{% block head %}    {
    { super() }} {% endblock %}{% block body %}

    Hello, World

    {% endblock %}

        使用super()获取原来模板中的内容

     

    0x2 Flask-Bootstrap & 错误页面

      2.1 Flask-Bootstrap

        git checkout 3b

        Bootstrap官方文档 http://getbootstrap.com/

    (venv) $ pip install flask-bootstrap

        初始化Flask-Bootstrap

    from flask.ext.bootstrap import Bootstrap#...bootstrap = Bootstrap(app)

        templates/user.html 使用Flask-Bootstrap的模板

    {% extends "bootstrap/base.html" %}{% block title %}Flasky{% endblock %}{% block navbar %}
    {% endblock %}{% block content %}
    {% endblock %}

    如果程序需要向已经有内容的块中添加新内容,必须使用Jinja2提供的super()函数

    如果要在衍生模板中添加新的js文件

    {% block scripts %}{
    { super() }}{% endblock %}

      2.2 错误页面

        git checkout 3c

    @app.errorhandler(404)def page_not_found(e):    return render_template('404.html'), 404@app.errorhandler(500)def internal_server_error(e):    return render_template('500.html'), 500

        templates/base.html

    {% extends "bootstrap/base.html" %}{% block title %}Flasky{% endblock %}{% block navbar %}
    {% endblock %}{% block content %}
    {% block page_content %}{% endblock %}
    {% endblock %}templates/404.html{% extends "base.html" %}{% block title %}Flasky - Page Not Found{% endblock %}{% block page_content %}
    {% endblock %}templates/user.html{% extends "base.html" %}{% block title %}Flasky{% endblock %}{% block page_content %}
    {% endblock %}
    View Code

    0x3 链接 & 静态文件 & Flask-Moment

      3.1 链接

            git checkout 3d

        Flask提供了url_for()可以使用程序URL映射中保存的信息生成URL

        使用url_for()生成动态地址时,将动态部分作为关键字参数传入

    url_for('user',name='john',_external=True)的返回结果是http://localhost:5000/user/john

        传入url_for()的关键字参数能将任何额外参数添加到查询字符串中

    url_for('index',page=2)的返回结果是/?page=2

      3.2 静态文件

        调用url_for('user',name='john',_external=True)的返回结果是http://xx/static/css/styles.css

        templates/base.html:定义收藏夹图标

    {% block head %}{
    { super() }}
    {% endblock %}

      3.3 Flask-Moment本地化日期和时间

        git checkout 3e

        学习moment.js提供的全部格式化选项:http://momentjs.com/docs/#/displaying

    (venv) $ pip install flask-moment

        初始化Flask-moment

    from flask.ext.moment import Momentmoment = Moment(app)

       templates/base.html:引入moment.js库

    {% block scripts %}{
    { super() }}{
    { moment.include_moment() }}{
    % endblock %}

       代码把变量current_time传入模板进行渲染

    from datetime import datetime@app.route('/')def index():    return render_template('index.html',current_time=datetime.utcnow())

        模板中渲染current_time

        templates/index.html:使用Flask-Moment渲染时间戳

    The local date and time is {

    { moment(current_time).format('LLL') }}.

    That was {

    { moment(current_time).fromNow(refresh=True) }}.

        format('LLL')根据客户端电脑中的时区和时域设置渲染日期时间,L到LLLL对应不同复杂度

        format() 还可以接受自定义格式说明符
        fromNow()渲染相对应时间戳,指定refresh后,其内容随时间推移而更新

        语言可在模板中选择,把语言代码传给lang()

    {
    { moment.lang('es') }}

     

    转载于:https://www.cnblogs.com/trojan-z/p/6341489.html

    你可能感兴趣的文章
    java中静态代码块的用法 static用法详解
    查看>>
    Java线程面试题
    查看>>
    Paper Reading: Relation Networks for Object Detection
    查看>>
    Java IO流学习总结
    查看>>
    day22 01 初识面向对象----简单的人狗大战小游戏
    查看>>
    递归函数,二分运算,正则表达式
    查看>>
    Flutter之内置动画(转)
    查看>>
    MySql优化相关概念的理解笔记
    查看>>
    数据库解决方案
    查看>>
    DataContract和DataMember的作用
    查看>>
    js如何获取response header信息
    查看>>
    python_文件的打开和关闭
    查看>>
    ADO.NET介绍
    查看>>
    iOS: 数据持久化方案
    查看>>
    【C#】【Thread】Monitor和Lock
    查看>>
    UVALive - 3635 - Pie(二分)
    查看>>
    Scala入门系列(十):函数式编程之集合操作
    查看>>
    pulseaudio的交叉编译
    查看>>
    Cracking The Coding Interview 1.1
    查看>>
    vb.net 浏览文件夹读取指定文件夹下的csv文件 并验证,显示错误信息
    查看>>